home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_03_02 / 3n02072a < prev    next >
Text File  |  1991-12-17  |  468b  |  16 lines

  1. // TESTKBD.C  Program to write a byte directly to the
  2. //      keyboard at port Hex 60.
  3. // Output functions are outp(<port>, <databyte>)
  4. //                  or  outpw(<port>, <dataword>)
  5. // <port> can be any unsigned integer in the range 0-65,535
  6. // for outp,  <databyte> can be any integer in the range 0-255
  7. // for outpw, <dataword> can be any value in the range 0-65,535
  8.  
  9. #include <conio.h>
  10.  
  11. int main()
  12. {
  13.     outp(0x60, 0xE9);
  14.     return 0;
  15. }        
  16.